home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
prog
/
word.arj
/
FLI01.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-28
|
453b
|
25 lines
#include <conio.h>
#include <wgt.h>
#include <wgtfli.h>
// WordUp Graphics Toolkit FLI demo program
// Simply loads in an FLI file and plays the animation.
void main(void)
{
vga256();
fliscreen=abuf;
// Abuf means the visual screen.
openfli("wordup.fli");
do {
nextframe();
wnormscreen();
}while (!kbhit());
getch();
closefli();
wfreeblock(fliscreen);
textmode(C80);
}